home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / jockey / jockey-backend next >
Text File  |  2008-11-24  |  3KB  |  76 lines

  1. #!/usr/bin/python
  2.  
  3. # (c) 2008 Canonical Ltd.
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License along
  16. # with this program; if not, write to the Free Software Foundation, Inc.,
  17. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18.  
  19. '''Jockey D-BUS backend executable.'''
  20.  
  21. import sys, optparse, logging, gettext
  22.  
  23. import jockey.backend
  24. from jockey.oslib import OSLib
  25.  
  26. def parse_argv():
  27.     '''Parse command line arguments, and return (options, args) pair.'''
  28.  
  29.     parser = optparse.OptionParser()
  30.     parser.add_option ('--debug', action='store_true',
  31.         dest='debug', default=False,
  32.         help=_('Enable debugging messages.'))
  33.     parser.add_option ('-l', '--logfile', type='string', metavar='FILE',
  34.         dest='logfile', default=None,
  35.         help=_('Write logging messages to a file instead to stderr.'))
  36.     parser.add_option ( '--timeout', type='int',
  37.         dest='timeout', metavar='SECS', default=600,
  38.         help=_('Timeout for D-BUS service (default: 600, 0: run forever)'))
  39.     parser.add_option ('-H', '--handler-dir',
  40.         type='string', dest='handler_dir', metavar='DIR', default=None,
  41.         help=_('Add a custom handler directory.'))
  42.     parser.add_option ( '--test', action='store_true',
  43.         dest='test', default=False,
  44.         help=_('Run on session D-BUS (only for testing)'))
  45.  
  46.     (opts, args) = parser.parse_args()
  47.     return (opts, args)
  48.  
  49. def setup_logging(debug=False, logfile=None):
  50.     '''Setup logging.'''
  51.  
  52.     logging.raiseExceptions = False
  53.     if debug:
  54.         logging.basicConfig(level=logging.DEBUG, filename=logfile,
  55.             format='%(asctime)s %(levelname)s: %(message)s')
  56.     else:
  57.         logging.basicConfig(level=logging.WARNING, filename=logfile,
  58.             format='%(levelname)s: %(message)s')
  59.  
  60. gettext.install('jockey', unicode=True)
  61. argv_options, argv_args = parse_argv()
  62. setup_logging(argv_options.debug, argv_options.logfile)
  63.  
  64. if argv_options.test:
  65.     OSLib.inst = OSLib()
  66.     svr = jockey.backend.Backend.create_dbus_server(session_bus=True,
  67.         handler_dir=argv_options.handler_dir)
  68. else:
  69.     OSLib.inst = OSLib()
  70.     svr = jockey.backend.Backend.create_dbus_server(
  71.         handler_dir=argv_options.handler_dir)
  72. if argv_options.timeout == 0:
  73.     svr.run_dbus_service()
  74. else:
  75.     svr.run_dbus_service(argv_options.timeout)
  76.